home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / OS2 / DIKUMUD.ZIP / WIZLIST.H < prev    next >
Encoding:
C/C++ Source or Header  |  1993-05-30  |  328 b   |  21 lines

  1. /*
  2.   SillyMUD Distribution V1.1b             (c) 1993 SillyMUD Developement
  3.  
  4.   See license.doc for distribution terms.   SillyMUD is based on DIKUMUD
  5. */
  6.  
  7. struct wiznest {
  8.   char *name;
  9.   char *title;
  10. };
  11.  
  12. struct wiznode {
  13.   struct wiznest stuff[150];
  14. };
  15.  
  16. struct wizlistgen {
  17.    int number[10];
  18.    struct wiznode lookup[10];
  19. };
  20.  
  21.